page.jsx 366 B

1234567891011
  1. import FilesExplorer from "@/components/explorer/levels/FilesExplorer";
  2. /**
  3. * /:branch/:year/:month/:day
  4. *
  5. * Explorer leaf: lists files for the selected day.
  6. */
  7. export default async function BranchYearMonthDayPage({ params }) {
  8. const { branch, year, month, day } = await params;
  9. return <FilesExplorer branch={branch} year={year} month={month} day={day} />;
  10. }